home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / scherz programme / explode / common.h next >
Text File  |  1996-04-07  |  607b  |  28 lines

  1. /*
  2.  * common.h - global data shared by explode and config
  3.  *
  4.  * Bruno Costa - 30 Dec 89 - 31 Dec 89
  5.  *
  6.  */
  7.  
  8. /*
  9.  *  TAG_CODE precedes TAG_ID in memory. Must not contain 0 bytes in it, and
  10.  * should represent an invalid machine language instruction
  11.  */
  12. #define TAG_CODE 0xF1234AFC
  13.  
  14. /*
  15.  *  the relation {strlen (TAG_ID) % 4 = 3} must be TRUE for proper
  16.  * alignment.
  17.  */
  18. #define TAG_ID "Data is here ->"
  19. #define TAGSIZE 16
  20.  
  21. /*
  22.  *  Explode Window defaults
  23.  */
  24. #define DEFDELAY 1    /* default time delay (speed of explosion) */
  25. #define DEFPAT 0xffff    /* default pattern for drawing outlines */
  26.  
  27. #define MAXSTEPS 30
  28.